home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 401-425 / disk_403 / rexxhostlib / makefile < prev    next >
Makefile  |  1992-05-06  |  800b  |  32 lines

  1. ################################################################
  2. #
  3. #    MakeFile to build rexxhost.library & FancyDemo.
  4. #
  5. #    Aztec 'C' 5.0 is required to compile the library,
  6. #    FancyDemo will probably compile with any other
  7. #    compiler.
  8. #
  9. ################################################################
  10.  
  11. CFLAGS            = -so -hi RexxHost.SYM
  12. OBJS            = LibStartup.o LibMain.o RexxHostLib.o StringAsm.o
  13.  
  14. all:            RexxHost.SYM rexxhost.library FancyDemo
  15.  
  16. rexxhost.library:    $(OBJS)
  17.             LN +q -m -o rexxhost.library $(OBJS) -Lrexx -Lc
  18.             Protect rexxhost.library -e
  19.             Copy rexxhost.library LIBS: CLONE
  20.  
  21. LibMain.o:        LibMain.c
  22.             CC -hi RexxHost.SYM LibMain.c
  23.  
  24. FancyDemo:        FancyDemo.o
  25.             LN +q FancyDemo.o -Lc
  26.  
  27. FancyDemo.o:        FancyDemo.c
  28.             CC FancyDemo.c
  29.  
  30. RexxHost.SYM:        PreInclude.c
  31.             CC -ho RexxHost.SYM PreInclude.c
  32.